home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
Other Langs
/
mpw yacc ƒ src
/
text.h
< prev
next >
Wrap
Text File
|
1989-11-19
|
203b
|
18 lines
#ifndef TEXT1
#define TEXT1
typedef
struct text
{
int start_line;
int length;
char ch[1];
}
text;
extern text *mk_text();
extern free_text();
extern write_text();
#endif